98303fe77a48240e52955ab42c82491249d5c29f,operatorgraph/src/main/java/lupos/gui/debug/ShowResult.java,ShowResult,handleGraphResult,#QueryResult#GraphResult#,131
Before Change
private void handleGraphResult(final QueryResult res, final GraphResult gr2) {
final Iterator<Bindings> itb = res.oneTimeIterator();
if (!itb.hasNext())
updateCommentPanel();
int tripleToAddIndex = 0;
while (itb.hasNext()) {
itb.next();
After Change
private void handleGraphResult(final QueryResult res, final GraphResult gr2) {
final Iterator<Bindings> itb = res.oneTimeIterator();
if (!itb.hasNext()) {
this.updateCommentPanel();
}
int tripleToAddIndex = 0;
while (itb.hasNext()) {